home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Visual Basic Toolbox
/
Visual Basic Toolbox (P.I.E.)(1996).ISO
/
avi
/
vbmmde
/
frmvideo.fr_
/
frmvideo.fr
Wrap
Text File
|
1994-02-16
|
1KB
|
53 lines
VERSION 2.00
Begin Form frmVideo
BackColor = &H00400000&
BorderStyle = 1 'Fixed Single
Caption = "MMDemo Video Player"
ClientHeight = 645
ClientLeft = 1560
ClientTop = 5430
ClientWidth = 5700
ClipControls = 0 'False
ControlBox = 0 'False
Height = 1050
Left = 1500
LinkTopic = "Form2"
MaxButton = 0 'False
MinButton = 0 'False
ScaleHeight = 645
ScaleWidth = 5700
Top = 5085
Width = 5820
Begin CommandButton cmdVidExit
Caption = "E&xit"
Height = 375
Left = 4560
TabIndex = 1
Top = 120
Width = 975
End
Begin MMControl mmVideo
Height = 375
Left = 120
TabIndex = 0
Top = 120
Width = 4215
End
End
Option Explicit
Sub cmdVidExit_Click ()
Unload frmVideo
End Sub
Sub Form_Load ()
' set properties
frmVideo.mmVideo.Notify = False
frmVideo.mmVideo.Wait = True
frmVideo.mmVideo.Shareable = False
frmVideo.mmVideo.DeviceType = "AVIVideo"
frmVideo.mmVideo.FileName = "\mmdemo\earth.avi"
frmVideo.mmVideo.Command = "Open"
End Sub